- 就是那个两个圈比较有设计亮点,其他没啥,还有就是弹出U盘的
- 还有一点一定要看,点击文件粉碎就会有一个右键菜单,AddFile()就是注册事件
- 下面是清除方法调用和AddFile()一样一样的
- U盘自动检测设备
private void DeleContextMenuItem(string itemName){ //创建项:shell RegistryKey shellKey = Registry.ClassesRoot.OpenSubKey(@"*\shell", true); if (shellKey == null) { shellKey = Registry.ClassesRoot.CreateSubKey(@"*\shell"); } //创建项:右键显示的菜单名称 shellKey.DeleteSubKeyTree(itemName); shellKey.Close();}
评论